home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Linux / Kubuntu 8.10 / kubuntu-8.10-desktop-i386.iso / casper / filesystem.squashfs / usr / lib / python2.5 / popen2.pyc (.txt) < prev    next >
Python Compiled Bytecode  |  2008-10-29  |  10KB  |  294 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyc (Python 2.5)
  3.  
  4. """Spawn a command with pipes to its stdin, stdout, and optionally stderr.
  5.  
  6. The normal os.popen(cmd, mode) call spawns a shell command and provides a
  7. file interface to just the input or output of the process depending on
  8. whether mode is 'r' or 'w'.  This module provides the functions popen2(cmd)
  9. and popen3(cmd) which return two or three pipes to the spawned command.
  10. """
  11. import os
  12. import sys
  13. __all__ = [
  14.     'popen2',
  15.     'popen3',
  16.     'popen4']
  17.  
  18. try:
  19.     MAXFD = os.sysconf('SC_OPEN_MAX')
  20. except (AttributeError, ValueError):
  21.     MAXFD = 256
  22.  
  23. _active = []
  24.  
  25. def _cleanup():
  26.     for inst in _active[:]:
  27.         if inst.poll(_deadstate = sys.maxint) >= 0:
  28.             
  29.             try:
  30.                 _active.remove(inst)
  31.             except ValueError:
  32.                 pass
  33.             except:
  34.                 None<EXCEPTION MATCH>ValueError
  35.             
  36.  
  37.         None<EXCEPTION MATCH>ValueError
  38.     
  39.  
  40.  
  41. class Popen3:
  42.     '''Class representing a child process.  Normally instances are created
  43.     by the factory functions popen2() and popen3().'''
  44.     sts = -1
  45.     
  46.     def __init__(self, cmd, capturestderr = False, bufsize = -1):
  47.         """The parameter 'cmd' is the shell command to execute in a
  48.         sub-process.  On UNIX, 'cmd' may be a sequence, in which case arguments
  49.         will be passed directly to the program without shell intervention (as
  50.         with os.spawnv()).  If 'cmd' is a string it will be passed to the shell
  51.         (as with os.system()).   The 'capturestderr' flag, if true, specifies
  52.         that the object should capture standard error output of the child
  53.         process.  The default is false.  If the 'bufsize' parameter is
  54.         specified, it specifies the size of the I/O buffers to/from the child
  55.         process."""
  56.         _cleanup()
  57.         self.cmd = cmd
  58.         (p2cread, p2cwrite) = os.pipe()
  59.         (c2pread, c2pwrite) = os.pipe()
  60.         if capturestderr:
  61.             (errout, errin) = os.pipe()
  62.         
  63.         self.pid = os.fork()
  64.         if self.pid == 0:
  65.             os.dup2(p2cread, 0)
  66.             os.dup2(c2pwrite, 1)
  67.             if capturestderr:
  68.                 os.dup2(errin, 2)
  69.             
  70.             self._run_child(cmd)
  71.         
  72.         os.close(p2cread)
  73.         self.tochild = os.fdopen(p2cwrite, 'w', bufsize)
  74.         os.close(c2pwrite)
  75.         self.fromchild = os.fdopen(c2pread, 'r', bufsize)
  76.         if capturestderr:
  77.             os.close(errin)
  78.             self.childerr = os.fdopen(errout, 'r', bufsize)
  79.         else:
  80.             self.childerr = None
  81.  
  82.     
  83.     def __del__(self):
  84.         self.poll(_deadstate = sys.maxint)
  85.         if self.sts < 0:
  86.             if _active is not None:
  87.                 _active.append(self)
  88.             
  89.         
  90.  
  91.     
  92.     def _run_child(self, cmd):
  93.         if isinstance(cmd, basestring):
  94.             cmd = [
  95.                 '/bin/sh',
  96.                 '-c',
  97.                 cmd]
  98.         
  99.         for i in xrange(3, MAXFD):
  100.             
  101.             try:
  102.                 os.close(i)
  103.             continue
  104.             except OSError:
  105.                 continue
  106.             
  107.  
  108.         
  109.         
  110.         try:
  111.             os.execvp(cmd[0], cmd)
  112.         finally:
  113.             os._exit(1)
  114.  
  115.  
  116.     
  117.     def poll(self, _deadstate = None):
  118.         """Return the exit status of the child process if it has finished,
  119.         or -1 if it hasn't finished yet."""
  120.         if self.sts < 0:
  121.             
  122.             try:
  123.                 (pid, sts) = os.waitpid(self.pid, os.WNOHANG)
  124.                 if pid == self.pid:
  125.                     self.sts = sts
  126.             except os.error:
  127.                 if _deadstate is not None:
  128.                     self.sts = _deadstate
  129.                 
  130.             except:
  131.                 _deadstate is not None
  132.             
  133.  
  134.         None<EXCEPTION MATCH>os.error
  135.         return self.sts
  136.  
  137.     
  138.     def wait(self):
  139.         '''Wait for and return the exit status of the child process.'''
  140.         if self.sts < 0:
  141.             (pid, sts) = os.waitpid(self.pid, 0)
  142.             if not pid == self.pid:
  143.                 raise AssertionError
  144.             self.sts = sts
  145.         
  146.         return self.sts
  147.  
  148.  
  149.  
  150. class Popen4(Popen3):
  151.     childerr = None
  152.     
  153.     def __init__(self, cmd, bufsize = -1):
  154.         _cleanup()
  155.         self.cmd = cmd
  156.         (p2cread, p2cwrite) = os.pipe()
  157.         (c2pread, c2pwrite) = os.pipe()
  158.         self.pid = os.fork()
  159.         if self.pid == 0:
  160.             os.dup2(p2cread, 0)
  161.             os.dup2(c2pwrite, 1)
  162.             os.dup2(c2pwrite, 2)
  163.             self._run_child(cmd)
  164.         
  165.         os.close(p2cread)
  166.         self.tochild = os.fdopen(p2cwrite, 'w', bufsize)
  167.         os.close(c2pwrite)
  168.         self.fromchild = os.fdopen(c2pread, 'r', bufsize)
  169.  
  170.  
  171. if sys.platform[:3] == 'win' or sys.platform == 'os2emx':
  172.     del Popen3
  173.     del Popen4
  174.     
  175.     def popen2(cmd, bufsize = -1, mode = 't'):
  176.         """Execute the shell command 'cmd' in a sub-process. On UNIX, 'cmd' may
  177.         be a sequence, in which case arguments will be passed directly to the
  178.         program without shell intervention (as with os.spawnv()). If 'cmd' is a
  179.         string it will be passed to the shell (as with os.system()). If
  180.         'bufsize' is specified, it sets the buffer size for the I/O pipes. The
  181.         file objects (child_stdout, child_stdin) are returned."""
  182.         (w, r) = os.popen2(cmd, mode, bufsize)
  183.         return (r, w)
  184.  
  185.     
  186.     def popen3(cmd, bufsize = -1, mode = 't'):
  187.         """Execute the shell command 'cmd' in a sub-process. On UNIX, 'cmd' may
  188.         be a sequence, in which case arguments will be passed directly to the
  189.         program without shell intervention (as with os.spawnv()). If 'cmd' is a
  190.         string it will be passed to the shell (as with os.system()). If
  191.         'bufsize' is specified, it sets the buffer size for the I/O pipes. The
  192.         file objects (child_stdout, child_stdin, child_stderr) are returned."""
  193.         (w, r, e) = os.popen3(cmd, mode, bufsize)
  194.         return (r, w, e)
  195.  
  196.     
  197.     def popen4(cmd, bufsize = -1, mode = 't'):
  198.         """Execute the shell command 'cmd' in a sub-process. On UNIX, 'cmd' may
  199.         be a sequence, in which case arguments will be passed directly to the
  200.         program without shell intervention (as with os.spawnv()). If 'cmd' is a
  201.         string it will be passed to the shell (as with os.system()). If
  202.         'bufsize' is specified, it sets the buffer size for the I/O pipes. The
  203.         file objects (child_stdout_stderr, child_stdin) are returned."""
  204.         (w, r) = os.popen4(cmd, mode, bufsize)
  205.         return (r, w)
  206.  
  207. else:
  208.     
  209.     def popen2(cmd, bufsize = -1, mode = 't'):
  210.         """Execute the shell command 'cmd' in a sub-process. On UNIX, 'cmd' may
  211.         be a sequence, in which case arguments will be passed directly to the
  212.         program without shell intervention (as with os.spawnv()). If 'cmd' is a
  213.         string it will be passed to the shell (as with os.system()). If
  214.         'bufsize' is specified, it sets the buffer size for the I/O pipes. The
  215.         file objects (child_stdout, child_stdin) are returned."""
  216.         inst = Popen3(cmd, False, bufsize)
  217.         return (inst.fromchild, inst.tochild)
  218.  
  219.     
  220.     def popen3(cmd, bufsize = -1, mode = 't'):
  221.         """Execute the shell command 'cmd' in a sub-process. On UNIX, 'cmd' may
  222.         be a sequence, in which case arguments will be passed directly to the
  223.         program without shell intervention (as with os.spawnv()). If 'cmd' is a
  224.         string it will be passed to the shell (as with os.system()). If
  225.         'bufsize' is specified, it sets the buffer size for the I/O pipes. The
  226.         file objects (child_stdout, child_stdin, child_stderr) are returned."""
  227.         inst = Popen3(cmd, True, bufsize)
  228.         return (inst.fromchild, inst.tochild, inst.childerr)
  229.  
  230.     
  231.     def popen4(cmd, bufsize = -1, mode = 't'):
  232.         """Execute the shell command 'cmd' in a sub-process. On UNIX, 'cmd' may
  233.         be a sequence, in which case arguments will be passed directly to the
  234.         program without shell intervention (as with os.spawnv()). If 'cmd' is a
  235.         string it will be passed to the shell (as with os.system()). If
  236.         'bufsize' is specified, it sets the buffer size for the I/O pipes. The
  237.         file objects (child_stdout_stderr, child_stdin) are returned."""
  238.         inst = Popen4(cmd, bufsize)
  239.         return (inst.fromchild, inst.tochild)
  240.  
  241.     __all__.extend([
  242.         'Popen3',
  243.         'Popen4'])
  244.  
  245. def _test():
  246.     _cleanup()
  247.     if not not _active:
  248.         raise repr, [] + []([ c.cmd for c in _active ])
  249.     'Active pipes when test starts '
  250.     cmd = 'cat'
  251.     teststr = 'ab cd\n'
  252.     if os.name == 'nt':
  253.         cmd = 'more'
  254.     
  255.     expected = teststr.strip()
  256.     print 'testing popen2...'
  257.     (r, w) = popen2(cmd)
  258.     w.write(teststr)
  259.     w.close()
  260.     got = r.read()
  261.     if got.strip() != expected:
  262.         raise ValueError('wrote %r read %r' % (teststr, got))
  263.     
  264.     print 'testing popen3...'
  265.     
  266.     try:
  267.         (r, w, e) = popen3([
  268.             cmd])
  269.     except:
  270.         (r, w, e) = popen3(cmd)
  271.  
  272.     w.write(teststr)
  273.     w.close()
  274.     got = r.read()
  275.     if got.strip() != expected:
  276.         raise ValueError('wrote %r read %r' % (teststr, got))
  277.     
  278.     got = e.read()
  279.     if got:
  280.         raise ValueError('unexpected %r on stderr' % (got,))
  281.     
  282.     for inst in _active[:]:
  283.         inst.wait()
  284.     
  285.     _cleanup()
  286.     if _active:
  287.         raise ValueError('_active not empty')
  288.     
  289.     print 'All OK'
  290.  
  291. if __name__ == '__main__':
  292.     _test()
  293.  
  294.